net/http.http2clientStream.ID (field)

17 uses

	net/http (current package)
		h2_bundle.go#L7541: 	ID            uint32
		h2_bundle.go#L8729: 	err = cc.writeHeaders(cs.ID, endStream, int(cc.maxFrameSize), hdrs)
		h2_bundle.go#L8741: 	if cs.ID == 0 {
		h2_bundle.go#L8781: 					cc.writeStreamReset(cs.ID, se.Code, err)
		h2_bundle.go#L8784: 				cc.writeStreamReset(cs.ID, http2ErrCodeCancel, err)
		h2_bundle.go#L8790: 			cc.writeStreamReset(cs.ID, http2ErrCodeNo, nil)
		h2_bundle.go#L8794: 	if cs.ID != 0 {
		h2_bundle.go#L8795: 		cc.forgetStreamID(cs.ID)
		h2_bundle.go#L8989: 			err = cc.fr.WriteData(cs.ID, sentEnd, data)
		h2_bundle.go#L9037: 		err = cc.writeHeaders(cs.ID, true, maxFrameSize, trls)
		h2_bundle.go#L9039: 		err = cc.fr.WriteData(cs.ID, true, nil)
		h2_bundle.go#L9345: 	cs.ID = cc.nextStreamID
		h2_bundle.go#L9347: 	cc.streams[cs.ID] = cs
		h2_bundle.go#L9348: 	if cs.ID == 0 {
		h2_bundle.go#L9817: 			cc.fr.WriteWindowUpdate(cs.ID, http2mustUint31(streamAdd))
		h2_bundle.go#L9962: 				cc.fr.WriteWindowUpdate(cs.ID, uint32(sendStream))
		h2_bundle.go#L10156: 	serr := http2streamError(cs.ID, f.ErrCode)